home *** CD-ROM | disk | FTP | other *** search
/ Champak 26 (Anniversary Edition) / Volume 26 [Anniversary Edition] - JOGO DISK .iso / DEPOSITO / REmovido / Puzzle / xball.swf / scripts / frame_18 / DoAction.as
Text File  |  2006-05-23  |  981b  |  46 lines

  1. border = 250;
  2. bricknumber = 100;
  3. Level_index += 1;
  4. Left = 60;
  5. speedx = 8;
  6. speedy = 8;
  7. ball._x = paddle._x;
  8. ball._y = paddle._y - 30;
  9. speedy *= -1;
  10. r = 0;
  11. c = 0;
  12. Count = 0;
  13. while(10 >= r)
  14. {
  15.    while(10 >= c)
  16.    {
  17.       if(r == 1 or r == 3 or r == 5 or r == 7 or r == 9)
  18.       {
  19.          if(c == 1 or c == 3 or c == 5 or c == 7 or c == 9)
  20.          {
  21.             dupRed(r,c,count,left);
  22.          }
  23.          else if(c == 2 or c == 4 or c == 6 or c == 8 or c == 10)
  24.          {
  25.             dupYellow(r,c,count,left);
  26.          }
  27.       }
  28.       else if(r == 2 or r == 4 or r == 6 or r == 8 or r == 10)
  29.       {
  30.          if(c == 2 or c == 4 or c == 6 or c == 8 or c == 10)
  31.          {
  32.             dupBlack(r,c,count,left);
  33.          }
  34.          else if(c == 1 or c == 3 or c == 5 or c == 7 or c == 9)
  35.          {
  36.             dupGreen(r,c,count,left);
  37.          }
  38.       }
  39.       c += 1;
  40.       count += 1;
  41.    }
  42.    r += 1;
  43.    c = 0;
  44. }
  45. _root.isInvisible();
  46.